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-93379135